Auto Script Sun Shine Lucky Spin System

Daily Bonus: If the user hasn't checked in yet, they are awarded a random daily bonus (between 10 to 50 coins, or any value you want to define).

Contact the Author

Please Sign In To Contact This Author

Here’s an example of an auto script that implements a daily check-in bonus with a lucky spin feature. The script will check if the user has checked in today, and if so, they receive a daily bonus and a chance to spin a wheel for a lucky prize.

Auto Script with Daily Check-In and Lucky Spin

import random
import time

# Define the prizes in the lucky spin
lucky_spin_prizes = ["100 Coins", "50 Coins", "Rare Item", "Double Bonus", "Nothing"]

# Function to check if the user has checked in today
def has_checked_in_today(last_check_in):
    current_date = time.strftime("%Y-%m-%d")
    if current_date == last_check_in:
        return True
    return False

# Function to award daily bonus
def award_daily_bonus():
    bonus = random.randint(10, 50)  # Random daily bonus between 10 and 50 coins
    print(f"Daily bonus awarded: {bonus} Coins!")
    return bonus

# Function to perform lucky spin
def lucky_spin():
    prize = random.choice(lucky_spin_prizes)
    print(f"Lucky spin result: {prize}")
    return prize

# Main function to simulate the auto-script
def daily_check_in(user_last_check_in):
    if has_checked_in_today(user_last_check_in):
        print("You have already checked in today! No bonus today.")
        return

    # Award daily bonus
    daily_bonus = award_daily_bonus()

    # Perform lucky spin
    print("It's time for your lucky spin!")
    spin_result = lucky_spin()

    # Update the last check-in date to today
    current_date = time.strftime("%Y-%m-%d")
    user_last_check_in = current_date
    print(f"Last check-in updated to {current_date}.")

    # Return user details including bonus and lucky spin prize
    return daily_bonus, spin_result, user_last_check_in

# Simulating a user session
last_check_in = "2025-01-13"  # Example last check-in date (change as needed)

# Simulate a new check-in attempt
daily_bonus, spin_result, last_check_in = daily_check_in(last_check_in)

# Output the results
print(f"Daily Bonus: {daily_bonus} Coins")
print(f"Lucky Spin Result: {spin_result}") 

Description of the Script:

  • Daily Check-In: The script first checks if the user has already checked in today. If the user has checked in already, they will not receive another bonus or lucky spin.
  • Daily Bonus: If the user hasn't checked in yet, they are awarded a random daily bonus (between 10 to 50 coins, or any value you want to define).
  • Lucky Spin: After receiving the bonus, the user gets a chance to spin a wheel with predefined prizes such as coins, rare items, or a double bonus.
  • Tracking Check-In Date: The last_check_in is updated after the user has checked in to prevent them from receiving a bonus on the same day again.

How the Script Works:

  1. The user attempts to check in.
  2. If it's a new day (the last check-in was not today), the script gives the user a bonus.
  3. The user then spins a wheel, which randomly selects a prize.
  4. The system updates the check-in date and prevents multiple check-ins on the same day.

 

Let me know if you need more details or adjustments to the script!

Related Products

Mining JS

Mining JS

0Sales
Rs7000
Top